home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / SOURCE.BIN / MetaTable.java < prev    next >
Encoding:
Java Source  |  1997-06-19  |  670 b   |  21 lines

  1. /*
  2.  * MetaTable.java   1.0   12 Jan 1997
  3.  *
  4.  * Copyright (c) 1996 Krumel & Associates, Inc.  All Rights Reserved.
  5.  *
  6.  * This software is provided as is.  Krumel & Associates shall not be liable
  7.  * for any damages suffered by licensee as a result of using, modifying or
  8.  * distributing this software or its derivatives.
  9.  */
  10.  
  11. package symantec.itools.db.awt;
  12.  
  13. public interface MetaTable {
  14.     public void setupGrid(Grid v);
  15.     public void setDbDataSource(DbDataSource ds);
  16.     public boolean isDataEditable(int row, int col) throws DataNotAvailable;
  17.     public Data[] arrangeForViewing(Data data[]);
  18.     public void setupColumn(Grid view, int col);
  19. }
  20.  
  21.